home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / CIncludes / Packages.h < prev    next >
C/C++ Source or Header  |  1996-05-01  |  1KB  |  72 lines

  1. /*
  2.      File:        Packages.h
  3.  
  4.      Contains:    Package Manager Interfaces.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __PACKAGES__
  19. #define __PACKAGES__
  20.  
  21. #ifndef __TYPES__
  22. #include <Types.h>
  23. #endif
  24.  
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28.  
  29. #if PRAGMA_IMPORT_SUPPORTED
  30. #pragma import on
  31. #endif
  32.  
  33. #if PRAGMA_ALIGN_SUPPORTED
  34. #pragma options align=mac68k
  35. #endif
  36.  
  37. #if FOR_SYSTEM7_AND_SYSTEM8_DEPRECATED
  38.  
  39. enum {
  40.     listMgr                        = 0,                            /* list manager */
  41.     dskInit                        = 2,                            /* Disk Initializaton */
  42.     stdFile                        = 3,                            /* Standard File */
  43.     flPoint                        = 4,                            /* Floating-Point Arithmetic */
  44.     trFunc                        = 5,                            /* Transcendental Functions */
  45.     intUtil                        = 6,                            /* International Utilities */
  46.     bdConv                        = 7,                            /* Binary/Decimal Conversion */
  47.     editionMgr                    = 11                            /* Edition Manager */
  48. };
  49.  
  50. extern pascal void InitPack(short packID)
  51.  ONEWORDINLINE(0xA9E5);
  52.  
  53. extern pascal void InitAllPacks(void )
  54.  ONEWORDINLINE(0xA9E6);
  55.  
  56. #endif
  57.  
  58. #if PRAGMA_ALIGN_SUPPORTED
  59. #pragma options align=reset
  60. #endif
  61.  
  62. #if PRAGMA_IMPORT_SUPPORTED
  63. #pragma import off
  64. #endif
  65.  
  66. #ifdef __cplusplus
  67. }
  68. #endif
  69.  
  70. #endif /* __PACKAGES__ */
  71.  
  72.